home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Business Master (3rd Edition)
/
The Business Master (3rd Edition).iso
/
files
/
wordmisc
/
prosrb
/
printman.bat
< prev
next >
Wrap
DOS Batch File
|
1989-03-29
|
1KB
|
27 lines
echo off
cls
if not exist psmanual.doc goto NOPSManual
echo ─────────────────────────────────────────────────────────────────────────
echo This will print Pro~Scribe's PSManual.DOC on your printer.
echo TO STOP printing at any time, just press Ctrl-Break!
echo PLEASE :
echo * Print using FIXED spaced fonts. The tables and charts
echo look terrible if printed with proportionally spaced fonts.
echo * Line up the paper so we can print right on the top line.
echo * Set your printer to 66 lines-per-page. Some pages have 60+lines.
echo If your printer's set up to print LESS THAN 66 LINES PER PAGE, you
echo might want to press Ctrl-Break, reset your printer, then re-run this.
echo Your manual will be printed in whatever mode your printer is in now.
echo So if it's in the wrong mode (eg., DRAFT mode, not LETTER QUALITY),
echo press Ctrl-Break, set up your printer, then start this again.
echo ─────────────────────────────────────────────────────────────────────────
pause
COPY PSManual.DOC PRN
goto End
:NOPSManual
echo PSManual.Doc was NOT found on this disk.
echo When you find the file called PSManual.Doc, either run this again, or
echo type: COPY PSMANUAL.DOC PRN (to print the manual on your printer)
:END